home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / dde / _pc / h / werr < prev    next >
Text File  |  1992-02-09  |  937b  |  30 lines

  1. (*
  2.  * Title  : werr.h
  3.  * Purpose: provide error reporting in wimp programs
  4.  *  
  5.  *)
  6.  
  7. #ifndef __werr_h
  8. #define __werr_h
  9.  
  10. (* ----------------------------------- werr --------------------------------
  11.  * Description:   Display a (possibly fatal) error message in a pop-up 
  12.  *                dialogue box.
  13.  * 
  14.  * Parameters:    int fatal -- non-zero indicates fatal error
  15.  *                char *format -- printf-style format string
  16.  *                ... -- variable arg list of message to be printed
  17.  * Returns:       void.
  18.  * Other Info:    Program exits if fatal is non-zero
  19.  *                Pointer is restricted to displayed dialogue box to stop 
  20.  *                user continuing until he has clicked on "OK" buton.
  21.  *                The message should be divided into at most three lines,
  22.  *                each of 40 characters or less.
  23.  * 
  24.  *)
  25. procedure werr(fatal : boolean; format : string; ..); extern;
  26.  
  27. #endif
  28.  
  29. (* end werr.h *)
  30.